:: StoryTitle
Untitled Story
:: StoryData
{
"ifid": "b664277d-8aad-4f61-b47c-311a0ed323d0",
"format": "SugarCube",
"format-version": "2.36.1",
"start": "Start",
"zoom": 1
}
:: CheckCalls {"position":"525,25","size":"100,100"}
You check your missed calls...
[[Call back|CallBack]]
[[Ignore|Ignore]]
:: PickUpPhone {"position":"275,25","size":"100,100"}
You pick up your phone...
<><><>
:: Sleep {"position":"150,25","size":"100,100"}
You try to sleep...
<><><>
:: Start {"position":"100,225","size":"100,100"}
Your cell phone is ringing away. You are groggy and wondering who it could be.
<><><>
[[Try to sleep|Sleep]]
[[Pick up your phone|PickUpPhone]]
:: WakeUp {"position":"425,200","size":"100,100"}
You wake up 5 hours later at 2pm.
<><><>
[[Check your missed calls|CheckCalls]]
[[Go to the washroom|Washroom]]
:: Washroom {"position":"775,175","size":"100,100"}
You go to the washroom...
[[Brush your teeth|BrushTeeth]]
[[Take a shower|Shower]]
:: StoryScript [script]
$(document).on(':passagedisplay', function (ev) {
var passageText = $(ev.content).text();
State.variables.passageText = passageText;
var textToRead = State.active.variables.passageText || "Your text goes here.";
var synth = window.speechSynthesis;
var utterance = new SpeechSynthesisUtterance(textToRead);
synth.speak(utterance);
});